OpenStack Liberty : Pre-Requirements
2015/11/15 |
This is the exmaple of Cloud Computiong by OpenStack.
On this example, Install and configure
Keystone,
Glance,
Nova,
Horizon
on a server as All-in-One.
For other componets, refer to the precondition of the section.
Install some services which some components of OpenStack needs for system requirements on here.
|
|
[1] | |
[2] |
Install KVM HyperVisor like here.
It's unnecessarry to set Bridge networking manually, though. ( OpenStack system sets Bridge networking ) |
[3] | |
[4] | Add the repository of Openstack Liberty. |
[root@dlp ~]# yum -y install centos-release-openstack-liberty [root@dlp ~]# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/CentOS-OpenStack-liberty.repo |
[5] | Install RabbitMQ and Memcached. |
[root@dlp ~]#
systemctl start rabbitmq-server memcached [root@dlp ~]# systemctl enable rabbitmq-server memcached # change guest's password [root@dlp ~]# rabbitmqctl change_password guest password Changing password for user "guest" ... ...done. |